# greetingsWithNameBand.py # # Description: Greeting chatbot that greets the user with the user's name # then ask for user's favourite band and comment on it. # # Author: Anne Lavergne # Date: F Jan. 12 2024 # Ask the user for her/his name and read the name userName = input("What is your name: ") # Print a greeting with the user name print(f"Greetings, {userName}!") # Ask the user for her/his favourite band and read the band's name userBand = input("What is your favourite band: ") # Print a comment about this band print(f"Ah! {userBand}! Really now???")